projects
/
gtk4.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
25295d1
)
tests: Add missing margin for testglarea
author
Alexander Mikhaylenko
<alexm@gnome.org>
Sun, 10 May 2020 23:57:01 +0000
(
04:57
+0500)
committer
Alexander Mikhaylenko
<alexm@gnome.org>
Sun, 10 May 2020 23:57:01 +0000
(
04:57
+0500)
tests/testglarea.c
patch
|
blob
|
history
diff --git
a/tests/testglarea.c
b/tests/testglarea.c
index b32aa2cab0bbb77306e7df49b010b610c5cc8b49..df009dc16de3471cd2600d6efb6683de3e31a6d7 100644
(file)
--- a/
tests/testglarea.c
+++ b/
tests/testglarea.c
@@
-421,6
+421,10
@@
main (int argc, char *argv[])
g_signal_connect (window, "destroy", G_CALLBACK (quit_cb), &done);
box = gtk_box_new (GTK_ORIENTATION_VERTICAL, FALSE);
+ gtk_widget_set_margin_start (box, 12);
+ gtk_widget_set_margin_end (box, 12);
+ gtk_widget_set_margin_top (box, 12);
+ gtk_widget_set_margin_bottom (box, 12);
gtk_box_set_spacing (GTK_BOX (box), 6);
gtk_window_set_child (GTK_WINDOW (window), box);
gtk_widget_show (box);